home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.120 < prev    next >
Encoding:
Text File  |  1996-02-12  |  27.9 KB  |  735 lines

  1. Frequently Asked Questions (FAQS);faqs.120
  2.  
  3.  
  4.  
  5.                 hostname.domain         hostname
  6.  
  7. 2. What should I do with my headers?
  8.  
  9.         Nothing unless you know what you're doing.
  10.  
  11.         In general, you want your 'netmail' and 'netnews' parameters in
  12.         static to result in valid headers, so that people can reply to you.
  13.  
  14.         If you can do so, get into a domain and domainize all your headers.
  15.         It'll make your life easier and will do the same for people who
  16.         exchange mail with you.
  17.  
  18.         The important thing to remember is that if you put a domain-style
  19.         address out without being domainized, people will probably not be
  20.         able to reply to your mail.  Just because an address looks good
  21.         doesn't make it valid...
  22.  
  23. 3. I'm not in a domain.  What should my headers look like ?
  24.  
  25.         In general, you want to have an address that is a known-good route
  26.         from a known site.
  27.  
  28.         Some possibilities are:
  29.                 All bang-path ===> some_known_host!your_site!you
  30.                 mixed format  ===> you%your_site.uucp@some_internet_site
  31.                                    your_site!you@some_internet_site
  32.  
  33.         The actual format that works best for you depends on who you're
  34.         connected to and what their mailer can handle.
  35.  
  36.     Note that the all bang-path format is not reccomended for news;
  37.     sites running B News will mangle your article in such a way that
  38.     downstream sites running newer software will drop it on the floor.
  39.  
  40. 4. I'm a single site. Should I register in the UUCP maps?
  41.  
  42.     Yes, or get a domain name.
  43.  
  44.         The bottom line is that if people try to mail to you, you want
  45.         your address to be reachable.  From Internet, you want to get
  46.         domainized and get a MX record if you can.
  47.  
  48.         From UUCP-only sites that don't touch Internet, you probably
  49.         need a map entry (or a header that routes you through somebody
  50.         with a map entry you can trust).
  51.  
  52. 5. Can I display something other than the sender in mail ?
  53.  
  54.         Yes, at 1.65 you can specify the header you want to see
  55.         when you do a list of messages via the 'listmail' item in static.
  56.     Unfortunately, this is not configurable per-user, only per-site.
  57.  
  58. 6. Does Waffle support mail folders ?
  59.  
  60.         Yes, at 1.65.
  61.  
  62.     If you have no new mail in your mailbox, you can say 'mail *' to
  63.     get a list of mailboxes to read.
  64.  
  65. 7. Can I use (my favorite mail program) ?
  66.  
  67.         Some people have had luck with 'readmail' for reading only,
  68.         and at 1.65 either mush or pc-elm should work for read/write.
  69.  
  70.         Version 1.65 has MMDF-style mailboxes with messages separated
  71.         by four control-A's, so mush and pc-elm should be able to
  72.         read/write these messages, though you'll have to reindex your
  73.         mailbox with 'makebox' or the like if you write to it.
  74.  
  75. 8. Can I keep a record of all mail that comes into the system ?
  76.  
  77.         Yes, create a file called 'inbox' in \waffle\admin and all
  78.         incoming mail will be copied there. You can stash this file
  79.     elsewhere via the rr.inbox variable in the static file.
  80.     See rmail.doc for more information...
  81.  
  82.  
  83. FILES SECTION
  84.  
  85. 1. How can I set the prompt in the files section ?
  86.  
  87.         Use the undocumented (before 1.65) 'fileprom' static file
  88.     parameter.  Try 'fileprom : [$f] :' as an example.
  89.  
  90. 2. I use a Fossil driver and a 16550 UART with FIFOs enabled. After
  91.      someone transfers a file, why does it seem as if characters are not being
  92.      transmitted?
  93.  
  94.         If you use DSZ, it directly accesses the UART, and uses the FIFOs.
  95.     By default, it turns them OFF when it finishes. Since Waffle (at least
  96.     1.64) doesn't appear to reset the Fossil driver, it tries stuffing
  97.     characters into a buffer that's turned off.
  98.  
  99.         The fix is to use the 'F' flag on DSZ's command line in
  100.         \waffle\extern\_send and _receive:
  101.  
  102.         Z /command="C:\waffle\bin\dsz F port %d est 0 %b sz -m %i",
  103.  
  104.     or to use the new (as of 1.65) /reset flag on the extern to
  105.     make Waffle reset the FOSSIL:
  106.  
  107.     Z /command="C:\waffle\bin\dsz port %d est 0 %b sz -m %i" /reset
  108.  
  109.         This can also affect file transfers using the built-in
  110.         editor.
  111.  
  112. 3. Those @access files are sure a pain...
  113.  
  114.     1.65 eliminates the @access files and replaces them with one
  115.     consolidated 'dirs' file that controls access to the files section.
  116.     Read \waffle\docs\files.doc for more info.
  117.  
  118.  
  119. EXTERNALS
  120.  
  121. 1. How do they all work ?
  122.  
  123.         Simple.  There's \waffle\extern\_system for the normal
  124.         commands, and you can add any command you want with any
  125.         access you want by adding a corresponding file to the
  126.         \waffle\extern directory.  Be careful regarding security, though...
  127.  
  128. 2. I use 4DOS, yet Waffle shells out to DOS, not 4DOS...
  129.  
  130.         You need to change the command interpreter in \waffle\extern\_system
  131.         to use 4DOS rather than command.com
  132.  
  133. 3. If I implement Waffle as a door from another BBS, how can users exit
  134.        from Waffle without dropping carrier?
  135.  
  136.        First, disable the 'exit' command in Waffle by adding the following
  137.        line to your static file.
  138.  
  139.     disable: exit
  140.  
  141.        Then provide an external implementation of the exit command by
  142.        creating extern\exit with the following contents.
  143.  
  144.     /access=0 /logout=exit /log /exit=81
  145.  
  146.     This causes Waffle to drop, without dropping the modem connection,
  147.     with errorlevel 81 (or whatever level you want to specify).  The
  148.     /access=0 ensures that all Waffle users can get back out once they
  149.     get in.
  150.  
  151.  
  152. EDITORS
  153.  
  154. 1. What editors can I use ?
  155.  
  156.         Locally, any editor your little 'ol heart desires that works
  157.         in pure ASCII (ie, you could use WordPerfectOffice, but not
  158.         WordPerfect itself since that saves in a non-ASCII format normally).
  159.  
  160.         Remotely, you have to be careful to use an editor that is ANSI
  161.         oriented and that doesn't do direct DOS screen I/O. Some editors
  162.         that are frequently used (and are available on SIMTEL20 and other
  163.         fine archive sites) include:
  164.  
  165.                 MEANSI.ZIP - MicroEmacs compiled to use ANSI mode.
  166.                 BBStevie   - vi clone
  167.                 FSED       - a very configurable editor that can be made to
  168.                                 look like just about any editor you want
  169.  
  170.         Be aware that if you set up external editors for your remote users,
  171.         you might have a security risk on your hands.  Be sure that you
  172.         know whether your editor will let a remote user shell out to the
  173.         operating system or not, and that you're giving exactly the
  174.         privileges you mean to give out.
  175.  
  176.         BBStevie in particular is designed to be configurable so that you
  177.         can prevent folks from getting to the shell (if you want) and you
  178.         can use the same binary to ALLOW some other folks shell access if
  179.         you want to do that, based on their Waffle access level.
  180.  
  181. 2. How can I use different local and remote editors ?
  182.  
  183.         At 1.65, you can define different local and remote editors from
  184.         within Waffle, so it's simple.  The STATUS command does not let
  185.     you edit your local editor, however; you have to ADMIN T <you>.
  186.  
  187.     Prior to 1.65, you should modify /waffle/extern/_editors to run
  188.     a batch file which gets passed the baud rate, and decides based
  189.     on that whether to run a local or remote editor.
  190.  
  191. 3. Why does (insert editor here) work locally, but not remotely?
  192.  
  193.     If you try BBStevie locally and it's fine, yet you get a blank
  194.     screen when you use it remotely, make sure that you do not have
  195.     an ansi driver loaded.  Some people have luck using PC Magazine's
  196.     ansi.com, which can be loaded and unloaded as part of a batch file
  197.     around your 'waffle local username' command, so that there's no
  198.     ansi driver loaded by default for remote users.
  199.  
  200.         Version 3.0 of BBStevie can use a FOSSIL driver to do its own
  201.         modem i/o, so that you can use a local ANSI driver to handle
  202.         local use and remote use will take care of itself.
  203.  
  204. NEWS
  205.  
  206. 1. Can I keep a copy of all posts ?
  207.  
  208.         Yes, look in static.doc and the USENET file distributed with
  209.     Waffle for /spy=monitor.
  210.  
  211. 2. Can I gateway mail to news ?
  212.  
  213.         Absolutely.  You need to set up an alias in 'aliases' that
  214.         looks something like the following:
  215.  
  216.         newsgroup-name  | post newsgroup.name
  217.  
  218. 3. Does Waffle provided threaded newsreading ?
  219.  
  220.         Not at this time.  If you grab a copy of 'snews' from an archive
  221.     site (ie, SIMTEL in the msdos.uucp directory) and hook it into Waffle,
  222.     you have something that's somewhat close.
  223.  
  224. 4. Does Waffle support kill files ?
  225.  
  226.         Not at this time, and most of us would kill for that :-)
  227.         This is planned for v1.66 if Tom responds to all the pleading.
  228.  
  229. 5. Why do I see multiple copies of the same article ?
  230.  
  231.         Because Waffle has no 'real-news'-like history mechanism
  232.         at this time.  Waffle considers an article to be a duplicate
  233.         only if the local site is already in the path.
  234.  
  235.         If you get a newsfeed of the same newsgroup from several Waffle
  236.         sites into your DOS Waffle, expect to see lots of duplicates :-(
  237.  
  238.         History mechanism is currently planned (rumored) for v1.66
  239.  
  240. 6. Why do my local postings not make it to USENET ?
  241.  
  242.         Probably because you forgot to run the 'batch' command to take
  243.         the list of articles to go out, assemble them, compress them,
  244.         and queue them up for transmission.
  245.  
  246.         You should call 'batch' from your poll.bat or from cron via the
  247.         schedule file.
  248.  
  249. 7. Can I edit the newsgroups line when making a post ?
  250.  
  251.         Not directly, but you can 'followup groupA groupB' and get
  252.         the same functionality.  Same goes for mailing a reply to
  253.     somebody and also kicking your reply to somebody else.
  254.  
  255. 8. Can I effectively read and followup to saved news messages ?
  256.  
  257.         Not really at this time.  If you're at the console, you could use
  258.         'readmail' to read them reasonably efficiently, though you
  259.         couldn't respond via mail or followup.
  260.  
  261.     There are also a myriad of relatively ugly workarounds available
  262.     in 1.65 making creative use of makebox.exe, perl, etc. to make the
  263.     saved messages into a mail folder.
  264.  
  265.         Being able to have saved news articles as a mail 'folder' and
  266.         use the mail program to read/follow/reply to saved news has
  267.         been suggested to Tom for a future release.
  268.  
  269. 9. In 'rn', how can I mail an article to somebody other than the author?
  270.  
  271.     Hit ":m username"
  272.  
  273.     Same idea for saving a message to a specified filename. In that
  274.         case you want to hit ":s filename".
  275.  
  276.         Think of it like hitting ':' to get to command mode in vi.
  277.  
  278.     Be careful, though, if you're at a "More" prompt - at the "More"
  279.     prompt, a ':' just gets you to the "What next?" prompt, so you
  280.     have to hit two colons.
  281.  
  282.  
  283. ADMINISTERING A USENET SITE
  284.  
  285. 1. What books should I buy ?
  286.  
  287.         There are several that no USENET admin should be without.
  288.  
  289.         From O-Reilly+Associates:
  290.  
  291.                 Administering UUCP and USENET
  292.                 A Directory of Electronic Mail Addressing and Networks
  293.  
  294.         From 'The Waite Group'
  295.                 Unix Communications
  296.  
  297. 2. What other stuff should I read ?
  298.  
  299.         Read USENET news, particularly some or all of the following
  300.         groups:
  301.                 comp.bbs.waffle
  302.                 comp.mail.uucp
  303.                 news.admin.misc
  304.                 news.answers
  305.                 news.newusers.questions
  306.  
  307.  
  308. COMMUNICATIONS
  309.  
  310. 1. What settings do I use for my Telebit modem ?
  311.  
  312.         That's far too complicated a question to answer here.
  313.         In general, turn compression off, and turn uucp 'spoofing' on.
  314.  
  315.         This can all be done on the fly by sending register settings as
  316.         part of your send-expect sequence when you call out, or you can
  317.         do so as part of your modem initialization string in static.
  318.  
  319.         Some Telebit modems don't save the register settings.  You might
  320.         have to set the registers in both the init string and in the
  321.         calling sequence.
  322.  
  323.         Also, grab a FOSSIL driver to control the port if you are running
  324.         a 9600 baud modem or above.  BNU and X00 seem to be the most
  325.         popularly used fossils according to the folks in c.b.w.  Don't
  326.     forget to set the driver to 'fossil' in the static file.
  327.  
  328. 2. What's the best throughput I can expect ?
  329.  
  330.         Throughput is a function of a variety of things, including
  331.         (but not limited to):
  332.                 - the speed and load of both systems
  333.                 - the speed of both modems
  334.                 - line noise on the phone line
  335.                 - the size of the batches being transferred
  336.                 - whether or not you are using a FOSSIL driver
  337.  
  338.         With a 2400 baud modem, you should get anywhere between 200 and
  339.         220 cps unless you're transferring very small batches.
  340.  
  341.     V.32 (9600 bps) should get anywhere between 700 and 1020 cps.
  342.  
  343.         With a Telebit Trailblazer Plus, you should expect something on
  344.         the order of 800 to 1400+ characters/second to a similar modem.
  345.  
  346.         Watch your \waffle\admin\net file for details regarding your
  347.         average characters per second.  A drop off from what's "normal"
  348.         could indicate hardware problems or line problems.
  349.  
  350.         [ shameless plug mode on ]
  351.  
  352.         To summarize your DOS net file easily, grab a copy of 'netsum' from
  353.         the Waffle directory on one of the archive sites..
  354.  
  355.         It can generate a variety of reports that can answer things like
  356.         "based on 11 cents/minute, how much DID I spend to uunet so far ?"
  357.  
  358. 3. What are the special characters recognized by the chat script ?
  359.  
  360.         See \waffle\docs\network.doc or 'Managing UUCP and USENET'
  361.         for details.
  362.  
  363. 4. How can I stop my connection from timing out while switching speeds ?
  364.  
  365.         Use uu.delay in static to set a default delay or use the -t
  366.         parameter in your uucico command to override the default.
  367.         See network.doc for more details.
  368.  
  369.     Also, make sure your modem will wait for a carrier at least as long
  370.     as the uu.delay you specify.  If your modem uses the AT command set
  371.     this is probably the S7 register setting.
  372.  
  373.         Lastly, if you talk to a Telebit modem and you have a non-Telebit
  374.         modem (that talks just file to anything else), you might want to
  375.         ask your feed to put PEP tones last.  Initial PEP tones can confuse
  376.         non-Telebit modems quite a bit.
  377.  
  378. 5. What does this error mean?
  379.  
  380.         See \waffle\docs\network.doc or 'Managing UUCP and USENET' for
  381.         details.
  382.  
  383.  
  384. AFTERMARKET ADD-ONS
  385.  
  386. 1. What add-on products are available for Waffle ?
  387.  
  388.         lots...and I mean lots.
  389.  
  390.         When in doubt poke around the Waffle directory on SIMTEL20 or a
  391.         mirror site for the list of stuff that's purely Waffle related.
  392.  
  393.         Also, keep your eyes open in the Waffle newsgroup for information
  394.         related to utilities that might not have been uploaded to Simtel.
  395.  
  396.         Lastly, look in \waffle\docs\third.doc in 1.65
  397.  
  398.  
  399. MISCELLANEOUS
  400.  
  401. 1. How can I set my mail and news signatures to be different ?
  402.  
  403.         It's built-in already.
  404.         The mailsig file is for mail, the sig file is for news.
  405.  
  406.         The \waffle\system\sig file gets inserted if it's there and you
  407.         don't have a personal sig or mailsig file.
  408.  
  409.         There are also a number of utilities around to give random or
  410.         user-definable signatures rather than just one signature each time.
  411.  
  412. 2. Can I use 16-bit compression ?
  413.  
  414.         Sure, if you have enough memory and can find a 16-bit compression
  415.     program.
  416.  
  417.         One is provided with 1.65 and there are a variety of add-in
  418.         16-bit compress programs for 1.64 and earlier available on SIMTEL.
  419.  
  420.         If you use 16-bit compress, be sure you have the 'compress' flag
  421.         in the static file set correctly for the compress you're using.
  422.     See \waffle\docs\comp16.doc .
  423.  
  424. 3. What are all those files in \waffle\* anyway ?
  425.  
  426.         At 1.65, Look in \waffle\docs\roadmap.doc for descriptions of almost
  427.         every file that comes with the software.
  428.  
  429. 4. What document in \waffle\docs contains what ?
  430.  
  431.         In 1.65, see 'index.doc' for a description of the docs.
  432.         If you have 'grep', you don't need to ask this anyway :-)
  433.  
  434. 5. Can I alter my headers after composing a message ?
  435.  
  436.         Some of them are editable in 1.65 via the 'alter' static parameter.
  437.     Don't put "To:", "CC:" or "Newsgroups:" in 'alter'; it won't work.
  438.  
  439. 6. Does DOS Waffle support control messages ?
  440.  
  441.         Other than cancelling a message you posted that hasn't been
  442.         batched up yet, no.  You might want to look at the contents of
  443.     the control newsgroup once in a while to see what control
  444.     messages you received that Waffle didn't process.
  445.  
  446.  
  447. WAFFLE BUGS
  448.  
  449. As with any large system, Waffle has bugs.  Since the source is available,
  450. some users have fixed some of the bugs that have cropped up.  In this
  451. section, the notation "Patch: <user>" means that the mentioned user has
  452. a patch to the source code available that will fix the problem.  You need
  453. to already have the source code for this to be useful to you.  "BPatch: <user>"
  454. means that the mentioned user has a binary patch available, which anyone
  455. should be able to use.  "Fixed: 1.xx" means that the bug is fixed as of
  456. the mentioned version.  "Workaround:" means that there is a way to avoid
  457. the bug in normal operation.
  458.  
  459. 1. When I mail to a | post alias from within Waffle, it only posts the headers.
  460.  
  461.     This is a bug having to do with external editors.
  462.     Workaround: use the internal editor when mailing to such an alias.
  463.     Patch: fenner@cs.psu.edu
  464.     Fixed: 1.66
  465.  
  466. 2. When I mail to a | post alias from within Waffle, it only works the first
  467.     time, the second time it doesn't do *anything*.
  468.  
  469.     Workaround: none known.
  470.     Patch: fenner@cs.psu.edu
  471.     Fixed: 1.66
  472.  
  473. 3. I configured my modem to work with FAX, but Waffle keeps saying
  474.     [Hayes code -2] and hangs up.
  475.  
  476.     This occurs if you have Auto-ATA: in your static file.
  477.     Workaround: make your modem answer the phone (no Auto-ATA: in the
  478.     static file and ATS0=1 in the initialize string).
  479.     Patch: fenner@cs.psu.edu
  480.     Fixed: 1.66
  481.  
  482. 4. I have personal aliases for "mom" and "dad", and when I type "mail mom dad"
  483.     Waffle complains "No such user", even though I can type "mail mom" or
  484.     "mail dad" and it works fine.
  485.  
  486.     Waffle's implementation of personal aliases isn't complete.
  487.     Workaround: put the aliases in /waffle/system/aliases
  488.     WARNING: This makes your aliases available to all users, so
  489.      *be* *careful* with what you put there.
  490.  
  491.  
  492. TRANSITION TO 1.65
  493.  
  494. 1. I updated my config files, but they didn't work.
  495.  
  496.         Some of the config files, notably 'paths', moved in 1.65 to the
  497.         new \waffle\uucp directory.  Make sure you aren't editing the file
  498.         in the old 1.64 location.
  499.  
  500. 2. I'm going to run makebox.  Anything I should know ?
  501.  
  502.         Yes.  Makebox deletes the old mail files after it assembles the
  503.     new mailbox.  If you're paranoid, you might want to zip up your
  504.     1.64 mail messages before running makebox if you're not sure you'll
  505.     stay at 1.65.
  506.  
  507.     Taking a few dozen 1.65 messages in a mailbox and going backward to
  508.     1.64 is a major pain unless you're a perl or awk whiz.
  509.  
  510. 3. 1.65 sure seems scary, why should I bother?
  511.  
  512.         Lots of reasons.  See history.doc and release.165 for details.
  513.  
  514.         Of course, if you're happy with the version you run, there's
  515.         not a lot of rush to get updated, though most of the c.b.w. readers
  516.     keep at the current version and you'll get better help from c.b.w.
  517.     by staying current.  There are still some Waffle sites at v1.61 (!!!).
  518.  
  519. Xref: bloom-picayune.mit.edu sci.geo.meteorology:4553 news.answers:4739
  520. Newsgroups: sci.geo.meteorology,news.answers
  521. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!snorkelwacker.mit.edu!stanford.edu!agate!spool.mu.edu!yale.edu!yale!gumby!destroyer!ncar!kiowa.scd.ucar.edu!ilana
  522. From: ilana@kiowa.scd.ucar.edu (Ilana Stern)
  523. Subject: Sources of Meteorological Data FAQ
  524. Message-ID: <1992Dec21.162657.2827@ncar.ucar.edu>
  525. Followup-To: sci.geo.meteorology
  526. Summary: Weather and research data available via Internet, CD-ROM, and tape.
  527. Sender: news@ncar.ucar.edu (USENET Maintenance)
  528. Supersedes: <1992Dec7.164655.9716@ncar.ucar.edu>
  529. Reply-To: ilana@ncar.ucar.edu
  530. Organization: NCAR/UCAR
  531. Date: Mon, 21 Dec 1992 16:26:57 GMT
  532. Approved: news-answers-request@MIT.Edu
  533. Expires: Tue, 5 Jan 1993 07:00:00 GMT
  534. Lines: 701
  535.  
  536. Archive-name: weather-data
  537. Last-modified: 14 December 1992
  538.  
  539. Recent changes:
  540.   Change to CLIMLIST listing
  541.   ---
  542.   Archive copy on pit-manager.mit.edu is now compressed
  543.   Addition of UNEP/GRID to section III
  544.  
  545. This is a guide to various sources of meteorological, oceanographic,
  546. and geophysical data.  Some of these data types are intended for enjoyment
  547. or hobbyist use;  other data are more research-oriented.  Much of the
  548. research data is not free.
  549.  
  550. More information on geological/geographical data can be found in the
  551. FAQ for sci.geo.geology, or see the file available via FTP from csn.org.
  552.  
  553. This guide is posted every two weeks;  a copy can be obtained by
  554. anonymous FTP to pit-manager.mit.edu, from the file weather-data.Z (it's
  555. a compressed file) in the directory /pub/usenet/news.answers.  A copy is
  556. also maintained in vmd.cso.uiuc.edu in the file SOURCES.DOC.  If you can't
  557. use FTP, you can get a copy by sending email to
  558. mail-server@pit-manager.mit.edu with
  559. send usenet/news.answers/weather-data
  560. as the only text in the message (leave the subject blank).
  561.  
  562. Corrections, additions, and comments should be sent to Ilana Stern at
  563. ilana@ncar.ucar.edu.  Please include in your message where you read
  564. this document.  **If you plan to redistribute this file to a mailing
  565. list, in another newsgroup, or in a newsletter, PLEASE CONTACT ME FIRST!**
  566.  
  567. ########################################################################
  568.  
  569.             C O N T E N T S
  570.  
  571.       I. Data available over the Internet
  572.      II. CD-ROM source list
  573.     III. Research data on tape and other media
  574.      IV. Weather-related mailing lists
  575.  
  576. ########################################################################
  577.  
  578. Subject: Data available over the Internet
  579.  
  580.             C O N T E N T S
  581.  
  582.     1. How to use anonymous FTP
  583.     2. How to use telnet
  584.     3. Index of FTP and Telnet sites by topic
  585.       A. Current weather images via FTP
  586.       B. Current weather data via telnet
  587.       C. Meteorological, oceanographic, and geophysical research data
  588.       D. Other satellite images
  589.       E. Map data
  590.       F. Other stuff
  591.       G. Special images (may be transient)
  592.     4. Alphabetical list of FTP and Telnet sites, with information
  593.  
  594. 1. How to use anonymous FTP
  595.  
  596. FTP (File Transfer Protocol) allows transfer of files between two computers
  597. which are on the Internet.  To access the FTP areas listed here, at your
  598. system prompt type "ftp" followed by the name or IP number (the number
  599. in brackets next to the system name in the listing below) of the desired
  600. system.  For example, to access vmd.cso.uiuc.edu you'd type
  601.  
  602.     ftp vmd.cso.uiuc.edu
  603. or
  604.     ftp 128.174.5.98
  605.  
  606. Use "anonymous" as your login and your email address as the password (if
  607. requested).
  608.  
  609. [Note: quotes ("like this") are used to set off names of directories and
  610. files, or commands you'd type, and are not part of these names.]
  611.  
  612. Not all FTP systems accept the same commands, but here's a list of the
  613. most useful:
  614.  
  615.     ls    list files in the current directory.
  616.     cd    change directory, e.g. "cd wx" changes to the wx directory.
  617.     binary    sets binary mode; USE THIS FOR RETRIEVING IMAGES!
  618.     ascii    sets ascii mode (the default).  Use for retrieving text.
  619.     get    retrieves a file, e.g. "get readme" gets a file called readme.
  620.     bye    exits FTP.
  621.  
  622.  
  623. 2. How to use telnet
  624.  
  625. Type "telnet" followed by the name or IP number (the number in brackets next
  626. to the system name in the listing below) of the desired system.  These
  627. publicly accessible systems generally allow you to log in but put you in
  628. a restricted shell, from which only a certain menu of commands is available.
  629.  
  630.  
  631. 3. Index of FTP and Telnet sites by topic
  632.  
  633. This index lists the names of FTP and Telnet sites of interest, with only
  634. a brief blurb as to their contents.  Section 4 gives more information about
  635. each of these sites.  Some sites appear more than once under different
  636. subject headings.
  637.  
  638.     A. Current weather images
  639.  
  640. ats.orst.edu                GOES vis/IR images of North, Central America
  641. aurelie.soest.hawaii.edu        SST data from AVHRR on NOAA-11, NOAA-12
  642. cumulus.met.ed.ac.uk        Meteosat vis/IR images of Europe
  643. liasun3.epfl.ch            Meteosat vis/IR images of Europe
  644. marlin.jcu.edu.au            GMS-4 images of Australia, TOGA/COARE area
  645. spot.colorado.edu        Surface maps, radar summaries, vis/ir US
  646. unidata.ucar.edu              Surface maps (US, Europe, China), soundings
  647. uriacc.uri.edu                 NOAA-11 images of the northeast US
  648. vmd.cso.uiuc.edu            GOES-7 vis/IR images, surface analyses over US
  649. wilbur.stanford.edu        Meteosat vis/IR images of Europe, vis/ir US
  650.  
  651.     B. Current weather data
  652.     
  653. ats.orst.edu             Some US city and Oregon weather forecasts
  654. hermes.merit.edu            US weather forecasts, global reports
  655. downwind.sprl.umich.edu 3000     US weather forecasts, global reports
  656. ncardata.ucar.edu        Colorado weather forecasts
  657.  
  658.     C. Meteorological, oceanographic, and geophysical research data
  659.  
  660. cdiac.esd.ornl.gov             Info on climate change topics
  661. ncardata.ucar.edu           Info on datasets available from NCAR
  662. nssdca.gsfc.nasa.gov        Info on datasets available from NSSDC
  663. storm.mmm.ucar.edu        STORM-FEST data
  664. pioneer.unm.edu               Data and software from various CD-ROMs
  665.  
  666.     D. Other satellite images
  667.  
  668. ames.arc.nasa.gov        Various earth-from-space images
  669. pioneer.unm.edu         Various images taken from CD-ROMs
  670. sanddunes.scd.ucar.edu        AVHRR images of USA via telnet
  671. snow.nohrsc.nws.gov        Snow cover maps of US from GOES
  672. sseop.jsc.nasa.gov           Pictures taken from the space shuttle
  673.  
  674.     E. Map data
  675.  
  676. csn.org                     Mapping software and datasets
  677. hanauma.stanford.edu           CIA World Bank database, 0.5 deg elev dataset
  678. ncardata.ucar.edu        Elevation data
  679. pioneer.unm.edu         World atlas, census data, others
  680. spectrum.xerox.com             Various USGS data
  681.  
  682.     F. Other stuff
  683.  
  684. csn.org                     Information on other Internet resources
  685. cumulus.met.ed.ac.uk        Software for computer-aided learning (CALMET)
  686. delocn.udel.edu            Software for oceanographic computations
  687. ncardata.ucar.edu        Script to retrieve vmd.cso.uiuc.edu GIFs
  688. pioneer.unm.edu            Image display software
  689. vmd.cso.uiuc.edu        Documents on weather-related topics
  690.  
  691.     G. Special images
  692.  
  693. spot.colorado.edu        Hurricane Andrew images
  694. unidata.ucar.edu        Hurricane Hugo images
  695.  
  696. 4. Alphabetical list of FTP and Telnet sites, with information
  697.  
  698. This section provides expanded listings of the sites in the previous
  699. section.  Remember to set the transfer type to "binary" when retrieving
  700. images!
  701.  
  702. ames.arc.nasa.gov                    (FTP)
  703.   Change directory to "SPACE/CDROM".  Images from Magellan and Viking
  704. missions, other stuff.
  705.  
  706. ats.orst.edu          [128.193.120.19]        (FTP)
  707.   GOES IR and VIS images over North and Central America, plus a "floater"
  708. image which "could be anything."  Also Oregon and US city forecasts.
  709.  
  710. aurelie.soest.hawaii.edu    [128.171.151.121]    (FTP)
  711.   Sea-Surface-Temperature data (near-real-time) in the directory
  712. "pub/avhrr/images".  AVHRR images within the radius of reception of the
  713. university's HRPT station, approximately 5 S to 45 N and 125 W to 165 E.
  714. The processed images are available usually within 30 min. of NOAA-11 and
  715. NOAA-12 passages.  Data are compressed binary in netCDF format (get
  716. documentation from unidata.ucar.edu FTP site) labelled by satellite name
  717. (n11/n12) and time.  More info available from hrpt@hokulea.soest.hawaii.edu.
  718.  
  719. cdiac.esd.ornl.gov     [128.219.24.36]          (FTP)
  720.   Contains data and information on general and technical aspects of
  721. carbon dioxide, methane, and other trace gas emissions; the carbon cycle;
  722. and other climate-change topics from CDIAC (the Carbon Dioxide Information
  723. Analysis Center, address in section 3).  The data for CDIAC's "Trends 91:
  724. A Compendium of Data on Global Change" is also available here.  (Contact
  725. CDIAC at cdp@stc10.ctd.ornl.gov to obtain a copy of the book.)
  726.  
  727. csn.org            [128.138.213.21]        (FTP)
  728.   Change directory to "COGS".  A large, frequently updated file containing
  729. detailed information on FTP sites, Bitnet and Usenet discussion groups,
  730. and data sources is located in the file "internet.resources.earth.sci".
  731. This file contains more information on mapping, GIS, remote sensing, and
  732. geology, subjects which are mostly outside the scope of this meteorology-
  733. oriented FAQ.  Mapping software and datasets are also available in this
  734. directory.  Contact bthoen@csn.org (Bill Thoen) for more information.
  735.